home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / comms / other / novia / src / novia_reg_data.h < prev    next >
C/C++ Source or Header  |  1999-12-06  |  505b  |  28 lines

  1. #include <libraries/mui.h>
  2. #include <pragma/muimaster_lib.h>
  3. #include <clib/exec_protos.h>
  4. #include <exec/memory.h>
  5. #include <clib/alib_protos.h>
  6.  
  7. #define REGID_SAVE 1111
  8.  
  9. struct RegApp
  10. {
  11.     APTR    App;
  12.     APTR    WI_label_0;
  13.     APTR    TX_label_7;
  14.     APTR    STR_RegNumber;
  15.     APTR    STR_Reg_Name;
  16.     APTR    STR_Reg_Location;
  17.     APTR    STR_Reg_Voicenumber;
  18.     APTR    STR_Reg_Modem;
  19.     APTR    STR_Reg_EMail;
  20.     APTR    BT_Reg_Save;
  21.     char *    STR_TX_label_7;
  22. };
  23.  
  24.  
  25. extern struct RegApp * CreateRegApp(void);
  26. extern void DisposeRegApp(struct RegApp *);
  27.  
  28.